home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / demo / igps_102.zip / MPHONE.H < prev    next >
C/C++ Source or Header  |  1994-06-23  |  2KB  |  50 lines

  1. ////////////////////////////////////////////////////////////////////////////////////
  2. // Internet Global Phone Project
  3. // mphone.h : main header file for the IGP application
  4. //
  5. // Very little modification to the AppWizard generated MFC skeleton. Note only
  6. // the mapping of the CWinApp Idle loop to the CPhoneView Idle loop to handle
  7. // the background audio compression/de-compression threads.
  8. ////////////////////////////////////////////////////////////////////////////////////
  9. // Copyright (c) 1993-1994    microWonders Inc.  All rights reserved.
  10. //                                                                         
  11. // AN OPEN INVITION TO BUILD UPON AND CONTRIBUTE TO THE PUBLIC TECHNOLOGY POOL:
  12. // You are encouraged to redistribute, and build upon the technologies presented 
  13. // in this source module and the accompanying article in Dr. Dobb's Journal provided 
  14. // all the conditions listed in the MUSTREAD.TXT file, included with this 
  15. // distribution, are met.
  16. ////////////////////////////////////////////////////////////////////////////////////
  17.  
  18.  
  19. #ifndef __AFXWIN_H__
  20.     #error include 'stdafx.h' before including this file for PCH
  21. #endif
  22.  
  23. #include "resource.h"       // main symbols
  24.  
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CPhoneApp:
  27. // See mphone.cpp for the implementation of this class
  28. //
  29. class CPhoneView;
  30. class CPhoneApp : public CWinApp
  31. {
  32. public:
  33.     CPhoneApp();
  34.     CView * m_OnlyView;  // just a kluge to link Idle Processing
  35. // Overrides
  36.     virtual BOOL InitInstance();
  37.     virtual BOOL OnIdle(LONG lCount);  // idle loop processing
  38.  
  39.  
  40.     //{{AFX_MSG(CPhoneApp)
  41.     afx_msg void OnAppAbout();
  42.         // NOTE - the ClassWizard will add and remove member functions here.
  43.         //    DO NOT EDIT what you see in these blocks of generated code !
  44.     //}}AFX_MSG
  45.     DECLARE_MESSAGE_MAP()
  46. };
  47.  
  48.  
  49. /////////////////////////////////////////////////////////////////////////////
  50.